home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 14
/
Aminet 14 - Oct 1996.iso
/
TCalc
/
English
/
TurboCalc2
/
Arexx
/
NewSheet.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1995-10-03
|
431b
|
24 lines
/*
* NewSheet.rexx
* Example-ARexx-Script of TurboCalc2.0 © 1993 by M.Friedrich
*
* This examples opens a new sheet, writes some texts into the sheet
* and closes (after displaying a message) this sheet then.
*/
Options FailAt 0
Options Results
ADDRESS TCALC
'NEWSHEET "This is an example"'
SELECTCELL B3
'PUT "This is a test"'
MELDUNG '"Opened new sheet via Arexx, confirm to close!"'
'PUT "Good Bye"'
CLOSESHEET 0